This repository has been archived by the owner on Oct 19, 2022. It is now read-only.
Update dependency io_bazel_rules_docker to v0.14.4 #35
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.7.0
->v0.14.4
Release Notes
bazelbuild/rules_docker
v0.14.4
Compare Source
v0.14.3
Compare Source
Fixes
v0.14.2
Compare Source
Fixes
dd7f9c5
(#1433)6e87304
(#1432)7e3bab5
(#1431)70f85ea
(#1426)0366fb2
(#1422)e0dcca4
(#1407)c442972
(#1406)0cb1d71
(#1402)a7a20a0
(#1401)4fefaaa
(#1397)5a55e51
(#1381)v0.14.1
Compare Source
Fixes
Fix repro tests (bazelbuild/rules_docker#1379)
v0.14.0
Compare Source
Fixes
update rules scala to pick up maven to https change (#1375)
Remote docker host (#1228)
remove par file that was checked in by mistake (#1372)
Get build args from eviron in dockerfile build (#1369)
Path join issues in contrib/dockerfile_build.bzl (#1367)
Update io_bazel_rules_groovy commit hash to
06ce250
(#1368)update rules_groovy call to repositories.bzl (#1366)
Update dependency build_bazel_rules_nodejs to v1.1.0 (#1362)
update puller and loader binaries to pich up #1359 (#1365)
Add http(s)_proxy env var support to puller (#1359)
Use 'portable' mtime as default for tars, like rules_pkg does (#1302)
Update dependency com_github_pkg_errors to v0.9.0 (#1363)
Update dependency io_bazel_rules_go to v0.21.0 (#1364)
Update dependency bazel_toolchains to v2.0.2 (#1361)
Revert "Change to using python 3 in host configuration (#1318)" (#1360)
Change to using python 3 in host configuration (#1318)
Add Canva to adopters list (#1358)
update_deps in Go (#1357)
Update dependency build_bazel_rules_nodejs to v1.0.1 (#1351)
Revert "Add robot_email attr to container push bzl rules (#1353)" (#1355)
Add robot_email attr to container push bzl rules (#1353)
Sync with internal change (#1352)
Update io_bazel_rules_scala commit hash to
bd0c388
(#1348)Update dependency build_bazel_rules_nodejs to v1 (#1340)
Update dependency bazel_toolchains to v2 (#1339)
Update io_bazel_rules_scala commit hash to
cfff088
(#1338)Update README for release v0.13.0 (#1326)
Update dependency bazel_toolchains to v1.2.4 (#1320)
Update io_bazel_rules_rust commit hash to
959ba56
(#1321)v0.13.0
Compare Source
Fixes
959ba56
(#1321)38f86fb
(#1311)886bc9c
(#1306)e568402
(#1303)ff57530
(#1294)3251240
(#1293)9467740
(#1289)container_import
r… (#1274)7b222cf
(#1270)26cf9b7
(#1269)ec436b5
(#1267)a610ace
(#1258)b94d3a4
(#1257)230f6d1
(#1252)v0.12.1
Compare Source
Fixes
f46e953
(#1233)0f89c21
(#1232)5aa465d
(#1211)b2273e7
(#1210)29acd8f
(#1209)v0.12.0
Compare Source
container_pull
,container_layer
,container_image
,container_flatten
andcontainer_push
now use Go binaries based on github.com/google/go-containerregistry instead of github.com/google/containerregistry.Fixes
v0.11.1
Compare Source
New Rules
Features
Fixes
e953b0a
(#1178)f985e5e
(#1177)v0.11.0
Compare Source
Features
Fixes
63cb47f
(#1170)55f7701
(#1167)177e2ee
(#1163)v0.10.1
Compare Source
Fixes
v0.10.0
Compare Source
Fixes
54d1cb3
(#1134)f4a24fe
(#1133)f727669
(#1120)9fae6b6
(#1097)9d68f24
(#1096)8a5ca6b
(#1077)05bd7d1
(#1076)2917d27
(#1054)4b84ad2
(#1053)17892bf
(#1052)v0.9.0
Compare Source
New Rules
Fixes
4c28450
(#1033)949b5d6
(#1030)4bccd37
(#1028)640e88a
(#1015)c06ab74
(#1012)b2968ca
(#996)3886b1a
(#990)0303b3a
(#989)3cd4c63
(#963)d3b1b86
(#961)8092d5f
(#944)v0.8.1
Compare Source
Major fixes
New Rules
Features
Other Fixes
v0.8.0
Compare Source
Breaking Changes
Fail when pulled image with unexpected sha256 (#743) (#734)
Return providers instead of struct from rule impl functions (#755)
IMPORTANT
This PR changes the return value type in some rule implementation functions from
struct
to a list of providers.No action is required if you are already using the providers returned by the below mentioned rules as described here (e.g.
target[ProviderName].fieldName
).Your action may be required if you are using either the implementation function or any targets of the following rules (in your own rule implementation functions or macros):
container_bundle
(in container/bundle.bzl)container_image
(in container/image.bzl)container_import
(in container/import.bzl)filter_layer
(in lang/image.bzl)Actions Required by Rule
container_bundle
If you use the
container_images
and/or thestamp
field of the returned struct, then get these fields from the returnedBundleInfo
provider as shown here.container_image
If you use the
container_parts
field of the returned struct, then get this field from the returnedImageInfo
provider as shown here.container_import
If you use the
container_parts
field of the returned struct, then get this field from the returnedImportInfo
provider (e.g.target[ImportInfo].container_parts
instead oftarget.container_parts
)filter_layer
If you use the
py
field of the returned struct astarget.py
, then get this field using the returnedPyInfo
provider astarget[PyInfo]
.Note
If you access the returned providers with the following syntax:
target.providers[<index>].<field>
then you most likely need to change this to:
target[<index>].<field>
New Rules
Features
Dockerfile Examples
Documentation
Fixes
Renovate configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.